home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOOM / DEF271.ZIP / DEMODEM.BAT < prev    next >
Encoding:
DOS Batch File  |  1995-09-16  |  592 b   |  18 lines

  1. @echo off
  2. echo ------------------------------------------------------------------------
  3. echo MODEM-to-MULTIPLAYER support switcher for DooM II Extender by A.Sundeyev
  4. echo ------------------------------------------------------------------------
  5. if exist demodem.777 goto switchtomodem
  6. rem otherwise switchtodwango
  7. ren doom2.exe demodem.777
  8. ren doom2.777 doom2.exe
  9. ren doom2com.old doom2.com
  10. echo Switched to GAME SERVER & DWANGO mode.
  11. goto finish
  12.  
  13. :switchtomodem
  14. ren doom2.com doom2com.old
  15. ren doom2.exe doom2.777
  16. ren demodem.777 doom2.exe
  17. echo Switched to MODEM mode.
  18. :finish